home *** CD-ROM | disk | FTP | other *** search
/ Chip: Special Tips & Tricks for Windows 95 / Chip Wintips.iso / demo / fpage / data.3 / httpd_common / conf / srm.org < prev   
Text File  |  1996-04-18  |  6KB  |  158 lines

  1. #----------------------------------------------------------------------
  2. #
  3. #   SRM.CNF
  4. #
  5. # Server resource configuration for the FrontPage Personal Web Server
  6. #
  7. # The settings in this file control the document layout and name specs
  8. # that your server makes visible to users. The values in the comments
  9. # are the defaults built into the server.
  10. #
  11. # Server configuration commands are similar to those for the NCSA
  12. # server version 1.3R.  If you have questions please see the online
  13. # documentation at http://hoohoo.ncsa.uiuc.edu
  14. #
  15. # NOTE: path defaults are relative to the server's installation
  16. #       directory (ServerRoot). Paths should be given in Unix
  17. #       format (using '/').
  18. #
  19. #----------------------------------------------------------------------
  20. #
  21. # DocumentRoot: The directory out of which you will serve your
  22. # documents. By default, all requests are taken from this directory, but
  23. # aliases may be used to point to other locations.
  24. #
  25. DocumentRoot VCONTENT
  26.  
  27. # DirectoryIndex: Name of the file to use as a pre-written HTML
  28. # directory index. This document, if present, will be opened when the
  29. # server receives a request containing a URL for the directory, instead
  30. # of generating a directory index.
  31. #
  32. # DirectoryIndex index.htm
  33.  
  34. # AccessFileName: The name of the file to look for in each directory
  35. # for access control information. This file should have a name which is
  36. # blocked from appearing in server-generated indexes!
  37. #
  38. # AccessFileName #haccess.ctl
  39.  
  40. # ========================
  41. # Aliasing and Redirection
  42. # ========================
  43. #
  44. # Redirect allows you to tell clients about documents which used to exist in
  45. # your server's namespace, but do not anymore. This allows you to tell the
  46. # clients where to look for the relocated document.
  47. #
  48. # Format: Redirect fakename url
  49. #
  50.  
  51. # Aliases: Add here as many aliases as you need, up to 20. One useful
  52. # alias to have is one for the path to the icons used for the server-
  53. # generated directory indexes. The paths given below in the AddIcon
  54. # statements are relative.
  55. #
  56. # Format: Alias fakename realname
  57. #
  58. Alias /icons/ VSERVER/icons/
  59.  
  60. # ScriptAlias: This controls which directories contain DOS server
  61. #              scripts.
  62. #
  63. # Format: ScriptAlias fakename realname
  64. #
  65. #ScriptAlias /cgi-dos/ VCONTENT/cgi-dos/
  66.  
  67. # WinScriptAlias: This controls which directories contain Windows
  68. #              server scripts.
  69. #
  70. # Format: WinScriptAlias fakename realname
  71. #
  72. #WinScriptAlias /cgi-win/  VCONTENT/cgi-win/
  73.  
  74. # =========================
  75. # MIME Content Type Control
  76. # =========================
  77. #
  78. # DefaultType is the default MIME type for documents which the server
  79. # cannot find the type of from filename extensions.
  80. #
  81. # DefaultType text/html
  82. DefaultType text/plain
  83.  
  84. # AddType allows you to tweak MIME.TYP without actually editing it, or to
  85. # make certain files to be certain types.
  86. #
  87. # Format: AddType type/subtype ext1
  88. #
  89.  
  90. # ReadmeName is the name of the README file the server will look for by
  91. # default.  The server will first look for name.htm, include it if found,
  92. # and it will then look for name.txt and include it as plaintext if found.
  93. # NOTE: Do not include an explicit extension, it is an error.
  94. #
  95. # Format: ReadmeName name
  96. #
  97. ReadmeName #readme
  98.  
  99. # ============================
  100. # AUTOMATIC DIRECTORY INDEXING
  101. # ============================
  102. #
  103. # The server generates a directory index if there is no file in the
  104. # directory whose name matches DirectoryIndex.
  105. #
  106. # FancyIndexing: Whether you want fancy directory indexing or standard
  107. #
  108. # FancyIndexing on
  109.  
  110. # IconsAreLinks: Whether the icons in a fancy index are links as
  111. # well as the file names.
  112. #
  113. # IconsAreLinks off
  114.  
  115. # AddIcon tells the server which icon to show for different files or filename
  116. # extensions. In preparation for the upcoming Chicago version, you should
  117. # include explicit 3 character truncations for 4-character endings. Don't
  118. # rely on the DOS underpinnings to silently truncate for you.
  119. #
  120. AddIcon /icons/text.gif     .html   .htm    .txt    .ini
  121. AddIcon /icons/image.gif    .gif    .jpg    .jpe    .jpeg   .xbm    .tiff   .tif    .pic    .pict     .bmp
  122. AddIcon /icons/sound.gif    .au     .wav    .snd
  123. AddIcon /icons/movie.gif    .mpg    .mpe    .mpeg
  124. AddIcon /icons/binary.gif   .bin    .exe    .bat    .dll
  125. AddIcon /icons/back.gif     ..
  126. AddIcon /icons/menu.gif     ^^DIRECTORY^^
  127. AddIcon /icons/dblank.gif       ^^BLANKICON^^
  128.  
  129. # DefaultIcon is which icon to show for files which do not have an icon
  130. # explicitly set.
  131. #
  132. DefaultIcon /icons/unknown.gif
  133.  
  134. # AddDescription allows you to place a short description after a file in
  135. # server-generated indexes. A better place for these are in inidividual
  136. # "#haccess.ctl" files in individual directories.
  137. #
  138. # Format: AddDescription "description" filename
  139. #
  140.  
  141. # IndexIgnore is a set of filenames which directory indexing should ignore
  142. # Here, I've disabled display of our readme and access control files,
  143. # plus anything that starts with a "~", which I use for annotation HTML
  144. # documents. I also have disabled some common editor backup file names.
  145. # Match is on file NAME.EXT only, and the usual * and ? meta-chars apply.
  146. #
  147. # WARNING: Be sure to set an ignore for your access control file(s)!!
  148. #
  149. # Format: IndexIgnore name1 name2...
  150. #
  151. IndexIgnore  ~* *.bak *.{* #readme.htm #haccess.ctl
  152.  
  153. WinScriptAlias /cgi-bin/imagemap VCONTENT/cgi-bin/imagemap.exe
  154. WinScriptAlias /cgi-bin/htimage  VCONTENT/cgi-bin/htimage.exe
  155.  
  156. ## END ##
  157.